x86/PVH: replace bogus assertion with conditional
authorJan Beulich <jbeulich@suse.com>
Tue, 4 Nov 2014 12:07:23 +0000 (13:07 +0100)
committerJan Beulich <jbeulich@suse.com>
Tue, 4 Nov 2014 12:07:23 +0000 (13:07 +0100)
While PVH guests currently have to start in 64-bit mode, nothing keeps
them from entering compatibility mode via a suitable ring-0 code
selector and making a hypercall from there. Fail such attempts rather
than asserting they won't happen.

Signed-off-by: Jan Beulich <jbeulich@suse.com>
Reviewed-by: Andrew Cooper <andrew.cooper3@citrix.com>
xen/arch/x86/hvm/hvm.c

index 78f519dc8d76df557644b522a3346837e1429537..8f49b440dd125ef658b172bbba6dd3b8104317f2 100644 (file)
@@ -4876,10 +4876,10 @@ int hvm_do_hypercall(struct cpu_user_regs *regs)
                                                    regs->r8, regs->r9);
         curr->arch.hvm_vcpu.hcall_64bit = 0;
     }
+    else if ( unlikely(is_pvh_vcpu(curr)) )
+        regs->_eax = -ENOSYS; /* PVH 32bitfixme. */
     else
     {
-        ASSERT(!is_pvh_vcpu(curr));   /* PVH 32bitfixme. */
-
         HVM_DBG_LOG(DBG_LEVEL_HCALL, "hcall%u(%x, %x, %x, %x, %x, %x)", eax,
                     (uint32_t)regs->ebx, (uint32_t)regs->ecx,
                     (uint32_t)regs->edx, (uint32_t)regs->esi,